home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK1.toast / Development Kits (Disc 1) / Open Transport / Sample Code / DLPI / OT DLPI Sample1.0B7 / MPW Build / Build Directions
Encoding:
Text File  |  1995-03-07  |  1.3 KB  |  50 lines  |  [TEXT/MPS ]

  1. #
  2. #    File:        Build Directions
  3. #
  4. #    Contains:    Information on how to setup the build process for the DLPI
  5. #
  6. #    Written by:    
  7. #
  8. #    Copyright:    © 1994 by Apple Computer, Inc., all rights reserved.
  9. #
  10. #    Change History (most recent first):
  11. #
  12. #
  13.  
  14. #
  15. # In order to build the sample DLPI for Ethernet, a few things need 
  16. # to be setup.  You will need the Open Transport developer disk.
  17. # Once the OT Developer Files Folder is copied to your local hard
  18. # set the path as shown below:
  19. #
  20.  
  21. Set OTDevTools 'Your Hard Disk:Open Transport SDK:'
  22. export    OTDevTools
  23.  
  24.  
  25. # The next MPW variable must point to the Universal headers.  This is a 
  26. # special version of the headers that accompanied this dlpi sample code.
  27.  
  28. set DriverHeaders    "Your Hard Disk:• Headers:"
  29. export DriverHeaders
  30.  
  31.  
  32. # The last MPW variable that must be setup is a path to the Driver Libraries.
  33. # This folder contains PCILib, NameRegistryLib, and DriverServicesLib
  34.  
  35. set DriverLibraries    "Your Hard Disk:• Libraries:"
  36. export DriverLibraries
  37.  
  38.  
  39. # After everything is setup then set the directory to the MakeFiles directory 
  40. # and just select and execute:
  41. #
  42.  
  43.         directory "Your Hard Disk:MPW Build:MakeFiles:"
  44.  
  45.         buildprogram -e dlpiCFM            # for PowerPC version, CFM stands for 
  46.                                         #  Code Fragment Manager
  47.  
  48. #
  49. # The sample dlpi and symbol file will be in the Built folder.
  50. #